home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / netclb23.zip / SYNC.H < prev    next >
C/C++ Source or Header  |  1994-05-20  |  543b  |  17 lines

  1. #ifndef SYNC_H
  2. #define SYNC_H
  3.  
  4. /***************************************/
  5. /* Synchronisation Services prototypes */
  6. /***************************************/
  7.  
  8. int CloseSemaphore( long semaphoreHandle );
  9. int ExamineSemaphore( long semaphoreHandle,int *semaphoreValue,
  10.     word *openCount);
  11. int OpenSemaphore( char *semaphoreName,int initialValue,long *semaphoreHandle,
  12.     word *openCount);
  13. int SignalSemaphore( long semaphoreHandle );
  14. int WaitOnSemaphore( long semaphoreHandle , int timeoutLimit );
  15.                      
  16. #endif
  17.